/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.8rem;
  font-family: cursive;
}
h4 {
  font-size: 2.5rem;
}
.home {
  width: 62.5%;
  margin: 0 auto;
}
body {
  background-color: gainsboro;
  background-image: url(@{background-img});
}
.home .top-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.home .top-home h1 {
  padding: 15px 25px;
  background-color: hotpink;
  border-radius: 10px;
  color: white;
  font-family: cursive;
}
@media (max-width: 840px) {
  .home .top-home nav {
    display: flex;
    flex-direction: column;
  }
}
.home .top-home nav a {
  margin: 0 5px 0 25px;
  font-size: 2rem;
  font-family: cursive;
  text-decoration: none;
  color: white;
  padding: 2px 8px;
  border-radius: 18px;
  background-color: lightslategray;
}
.home .top-home nav a:hover {
  opacity: 0.5;
}
@media (max-width: 840px) {
  .home .top-home nav a {
    margin-bottom: 5px;
  }
}
.home footer {
  background-color: white;
  margin-top: 20px;
}
.home footer .bottom-content {
  margin: 0 20px;
}
.home footer h4 {
  font-family: cursive;
}
.home footer address {
  font-size: 1.6rem;
}
.home .top-main {
  background-color: white;
  margin: 30px 0;
  border-radius: 10px;
}
.home .top-main .top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .home .top-main .top-content {
    display: flex;
    flex-flow: column;
  }
}
.home .top-main .top-content p {
  width: 45%;
  margin: 20px 0;
  font-size: 1.55vw;
}
@media (max-width: 800px) {
  .home .top-main .top-content p {
    width: 90%;
    font-size: 1.6rem;
  }
}
.home .top-main .top-content p span {
  font-size: 2.8vw;
  font-family: cursive;
}
@media (max-width: 800px) {
  .home .top-main .top-content p span {
    font-size: 2.3rem;
  }
}
.home .top-main .top-content .btn {
  display: flex;
  flex-flow: column;
  margin-top: 10px;
}
@media (max-width: 800px) {
  .home .top-main .top-content .btn {
    width: 100%;
  }
}
.home .top-main .top-content .btn button {
  font-size: 3vw;
  padding: 15px 25px;
  background-color: #0090c5;
  color: white;
  cursor: pointer;
  width: 100%;
  height: 0%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.home .top-main .top-content .btn button:hover {
  opacity: 0.6;
}
@media (max-width: 800px) {
  .home .top-main .top-content .btn button {
    padding: 15px 25px;
    background-color: #0090c5;
    color: white;
    cursor: pointer;
    font-size: 2rem;
    width: 90%;
    margin: 5px auto;
  }
}
.home .top-mid {
  width: 100%;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .home .top-mid {
    display: none;
  }
}
.home .top-mid img {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.home .mid-content {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .home .mid-content {
    display: flex;
    flex-flow: column;
  }
}
.home .mid-content .trending {
  margin: 0 15px;
  background-color: white;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .home .mid-content .trending {
    margin: 10px 0;
  }
}
.home .mid-content .trending img {
  width: 200px;
  height: 133px;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.home .mid-content .trending h3 {
  margin: auto;
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home .mid-content .trending p {
  font-size: 2rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}
